Namespace: documents

documents

Provides functions to write, read, query, or perform other operations on documents in the database. For operations that modify the database, the client must have been created for a user with the rest-writer role. For operations that read or query the database, the user need only have the rest-reader role.

Methods


advanceLsqt(temporalCollection, lag) → {ResultProvider}

Advances the LSQT (Last Stable Query Time) of a temporal collection.
Parameters:
Name Type Argument Description
temporalCollection string The name of the temporal collection for which to advance the LSQT.
lag string <optional>
The lag (in seconds (???)) to subtract from the maximum system start time in the temporal collection to determine the LSQT.
Since:
  • 2.1.1
Returns:
an object whose result() function takes an object with the new LSQT as an 'lsqt' property.
Type
ResultProvider

createWriteStream(uri, collections, permissions, properties, quality, metadataValues, versionId, txid, transform) → {WritableStream}

Writes a large document (typically a binary) in incremental chunks with a stream; takes a documents.DocumentDescriptor object with the following properties (but not a content property).
Parameters:
Name Type Argument Description
uri string the identifier for the document to write to the database
collections Array.<string> <optional>
the collections to which the document should belong
permissions Array.<object> <optional>
the permissions controlling which users can read or write the document
properties Array.<object> <optional>
additional properties of the document
quality number <optional>
a weight to increase or decrease the rank of the document
metadataValues Array.<object> <optional>
the metadata values of the document
versionId number <optional>
an identifier for the currently stored version of the document (when enforcing optimistic locking)
txid string | transactions.Transaction <optional>
a string transaction id or Transaction object identifying an open multi-statement transaction
transform string | Array.<mixed> <optional>
the name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
Since:
  • 1.0
Returns:
a stream for writing the database document; the stream object also has a result() function that takes a documents#writeResult success callback.
Type
WritableStream

patch(uri, operations, categories, temporalCollection, temporalDocument, sourceDocument, txid, versionId) → {ResultProvider}

Applies changes to a document; takes a configuration object with the following named parameters or, as a shortcut, a uri string and one or more patch operations produced by a patchBuilder.
Parameters:
Name Type Argument Description
uri string the uri
operations patchOperation | Array.<patchOperation> delete, insert, or replace operations produced by a patchBuilder to apply to the document.
categories documents.categories | Array.<documents.categories> <optional>
the categories of information modified by the patch (typically 'content')
temporalCollection string <optional>
the name of the temporal collection; use only when patching temporal documents
temporalDocument string <optional>
the collection URI for the temporal document to be patched; use only when patching temporal documents
sourceDocument string <optional>
the source collection URI for patching the temporal document; use only when writing temporal documents
txid string | transactions.Transaction <optional>
a string transaction id or Transaction object identifying an open multi-statement transaction to patch the document as part of a larger multi-statement transaction
versionId number <optional>
an identifier for the currently stored version of the document (when enforcing optimistic locking)
Since:
  • 1.0
Returns:
an object whose result() function takes a documents#patchResult success callback.
Type
ResultProvider

probe(uri, txid) → {ResultProvider}

Probes whether a document exists; takes a configuration object with the following named parameters or, as a shortcut, a uri string.
Parameters:
Name Type Argument Description
uri string the uri for the database document
txid string | transactions.Transaction <optional>
a string transaction id or Transaction object identifying an open multi-statement transaction
Since:
  • 1.0
Returns:
an object whose result() function takes a documents#probeResult success callback.
Type
ResultProvider

protect(uri, temporalCollection, duration, expireTime, level, archivePath) → {ResultProvider}

Protects a temporal document from temporal operations for a period of time.
Parameters:
Name Type Argument Description
uri string the uri for the temporal document to protect
temporalCollection string the temporal collection for the document
duration string <optional>
a protection duration; either a duration or an expire time must be provided
expireTime string <optional>
an expiration time; either an expiration time or a duration must be provided
level string <optional>
a protection level of 'noWipe'|'noDelete'|'noUpdate' (default is 'noDelete')
archivePath string <optional>
an archive path
Since:
  • 2.0.1
Returns:
an object whose result() function takes a documents#protectResult success callback.
Type
ResultProvider

query(query, timestamp, resultEstimateCallback) → {ResultProvider}

Executes a query built by a queryBuilder to match one or more documents.
Parameters:
Name Type Argument Description
query object a query built by a queryBuilder or a documents.CombinedQueryDefinition
timestamp DatabaseClient.Timestamp <optional>
a Timestamp object for point-in-time operations.
resultEstimateCallback function <optional>
Retrieve the value of "vnd.marklogic.result-estimate" from the headers.
Since:
  • 1.0
Returns:
an object whose result() function takes a documents#resultList success callback.
Type
ResultProvider

queryAll(query, options, onCompletion, batchSize, queryBatchMultiple, consistentSnapshot, onInitialTimestamp) → {stream.Readable}

The queryAll function reads one or more document uris from database using a passThrough stream and optional options. The optional options include onCompletion, batchSize, queryBatchMultiple and consistentSnapshot.
Parameters:
Name Type Argument Description
query ctsQuery A query built by the ctsQueryBuilder.
options object <optional>
Configures the query operation.
onCompletion function <optional>
A callback that receives a summary of the results.
batchSize Integer <optional>
The number of documents in each batch.
queryBatchMultiple Integer <optional>
The number of batches each batch of document uris get divided into when writing back to the return stream.
consistentSnapshot boolean | DatabaseClient.timestamp <optional>
Controls whether to get an immutable view of the result set. Each request gets the latest data at the time of the request if not set/ false. Uses the timestamp of the first request for all subsequent requests if true. Uses the supplied timestamp for all requests if set to DatabaseClient.timestamp object.
onInitialTimestamp function <optional>
Receives the timestamp from the first request. Takes parameters of - Timestamp object for the server timestamp for the result set. Throws error if consistentSnapshot is not true.
Since:
  • 2.9.0
Returns:
- a stream.Readable in object mode that sends document URI output read from the database to the application in string mode or (for arrays of strings) object mode.
Type
stream.Readable

queryToReadAll(query, options, onCompletion, onBatchError, inputKind, batchSize, queryBatchMultiple, concurrentRequests, categories, transform, consistentSnapshot, onInitialTimestamp, outputStreamType) → {stream.Readable}

The queryToReadAll function is a convenience function that combines the queryAll and readAll operations.
Parameters:
Name Type Argument Description
query ctsQuery A query built by the ctsQueryBuilder.
options object <optional>
Configures the queryToReadAll operation.
onCompletion function <optional>
A callback that receives a summary of the results.
onBatchError function <optional>
A callback that responds to any error while reading a batch of documents. Takes progressSoFar, the uris of the batch failed and the error as parameters and controls the resolution by returning a replacement array, null/empty array or an error.
inputKind string | array <optional>
Indicates whether the input stream of readAll should accept individual strings or array of strings.
batchSize Integer <optional>
The number of documents in each batch.
queryBatchMultiple Integer <optional>
The number of batches each batch of document uris get divided into when writing back to the return stream in queryAll.
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
categories documents.categories | Array.<documents.categories> <optional>
the categories of information to retrieve for the documents.
transform string | Array.<mixed> <optional>
the name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
consistentSnapshot boolean | DatabaseClient.timestamp <optional>
Controls whether to get an immutable view of the result set. Each request gets the latest data at the time of the request if not set/ false. Uses the timestamp of the first request for all subsequent requests if true. Uses the supplied timestamp for all requests if set to DatabaseClient.timestamp object.
onInitialTimestamp function <optional>
Receives the timestamp from the first request. Takes parameters of - Timestamp object for the server timestamp for the result set. Throws error if consistentSnapshot is not true.
outputStreamType chunked | object <optional>
Controls whether data is written to the output stream as chunks or object.
Since:
  • 2.9.0
Returns:
- a stream.Readable in object mode that returns document descriptors with the content and/or document uri as output to the application in object mode.
Type
stream.Readable

queryToRemoveAll(query, options, consistentSnapshot, onInitialTimestamp, queryBatchMultiple, onCompletion, onBatchError, inputKind, batchSize, concurrentRequests, onBatchSuccess)

The queryToRemoveAll is a convenience function that combines the queryAll and removeAllUris operations.
Parameters:
Name Type Argument Description
query ctsQuery A query built by the ctsQueryBuilder.
options object <optional>
Configures the queryToRemoveAll operation.
consistentSnapshot boolean | DatabaseClient.timestamp <optional>
Controls whether to get an immutable view of the result set. Each request gets the latest data at the time of the request if not set/ false. Uses the timestamp of the first request for all subsequent requests if true. Uses the supplied timestamp for all requests if set to DatabaseClient.timestamp object.
onInitialTimestamp function <optional>
Receives the timestamp from the first request. Takes parameters of - Timestamp object for the server timestamp for the result set. Throws error if consistentSnapshot is not true.
queryBatchMultiple Integer <optional>
The number of batches each batch of document uris get divided into when writing back to the return stream in queryAll.
onCompletion function <optional>
A callback that receives a summary of the results.
onBatchError function <optional>
A callback that responds to any error while removing a batch/array of documents. Takes progressSoFar, the uris of the batch failed and the error as parameters and controls the resolution by returning a replacement array, null/empty array or an error.
inputKind string | array <optional>
Indicates whether the input stream should accept individual strings or array of strings.
batchSize Integer <optional>
The number of documents in each request where the inputKind is 'string'.
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
onBatchSuccess function <optional>
A callback that can notify other systems about batches removed successfully.
Since:
  • 3.0.0

queryToTransformAll(query, options, consistentSnapshot, onInitialTimestamp, queryBatchMultiple, onCompletion, onBatchError, inputKind, batchSize, concurrentRequests, transform, transformStrategy, onBatchSuccess)

The queryToTransformAll is a convenience function that combines the queryAll and transformAll operations. The transform used to configure the documents must be installed on the server beforehand.
Parameters:
Name Type Argument Description
query ctsQuery A query built by the ctsQueryBuilder.
options object <optional>
Configures the queryToTransformAll operation.
consistentSnapshot boolean | DatabaseClient.timestamp <optional>
Controls whether to get an immutable view of the result set. Each request gets the latest data at the time of the request if not set/ false. Uses the timestamp of the first request for all subsequent requests if true. Uses the supplied timestamp for all requests if set to DatabaseClient.timestamp object.
onInitialTimestamp function <optional>
Receives the timestamp from the first request. Takes parameters of - Timestamp object for the server timestamp for the result set. Throws error if consistentSnapshot is not true.
queryBatchMultiple Integer <optional>
The number of batches each batch of document uris get divided into when writing back to the return stream in queryAll.
onCompletion function <optional>
A callback that receives a summary of the results.
onBatchError function <optional>
A callback that responds to any error while transforming a batch/array of documents. Takes progressSoFar, the uris of the batch failed and the error as parameters and controls the resolution by returning a replacement array, null/empty array or an error.
inputKind string | array <optional>
Indicates whether the input stream should accept individual strings or array of strings.
batchSize Integer <optional>
The number of documents in each request where the inputKind is 'string'.
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
transform string | Array.<mixed> <optional>
The name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
transformStrategy replace | ignore <optional>
Controls whether the output from the transform replaces the content at the document URI. The ignore strategy allows the transform to persist output in the database without changing the original document.
onBatchSuccess function <optional>
A callback that can notify other systems about batches transformed successfully.
Since:
  • 3.0.0

read(uris, categories, txid, transform, range, timestamp) → {ResultProvider}

Reads one or more documents; takes a configuration object with the following named parameters or, as a shortcut, one or more uri strings or an array of uri strings.
Parameters:
Name Type Argument Description
uris string | Array.<string> the uri string or an array of uri strings for the database documents
categories documents.categories | Array.<documents.categories> <optional>
the categories of information to retrieve for the documents
txid string | transactions.Transaction <optional>
a string transaction id or Transaction object identifying an open multi-statement transaction
transform string | Array.<mixed> <optional>
the name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
range Array.<number> <optional>
the range of bytes to extract from a binary document; the range is specified with a zero-based start byte and the position after the end byte as in Array.slice()
timestamp DatabaseClient.Timestamp <optional>
a Timestamp object for point-in-time operations.
Since:
  • 1.0
Returns:
an object whose result() function takes a documents#resultList success callback.
Type
ResultProvider

readAll(stream, options, onCompletion, onBatchError, inputKind, batchSize, concurrentRequests, categories, transform, consistentSnapshot, onInitialTimestamp, outputStreamType) → {stream.Duplex}

The readAll function reads one or more document(s) from database using a duplex stream and optional options. The optional options include onCompletion, batchSize, onBatchError, inputKind, concurrentRequests, categories, transform, onInitialTimestamp, outputStreamType and consistentSnapshot.
Parameters:
Name Type Argument Description
stream stream stream containing the input uris.
options object <optional>
Configures the readAll operation.
onCompletion function <optional>
A callback that receives a summary of the results.
onBatchError function <optional>
A callback that responds to any error while reading a batch of documents. Takes progressSoFar, the uris of the batch failed and the error as parameters and controls the resolution by returning a replacement array, null/empty array or an error.
inputKind string | array <optional>
Indicates whether the input stream should accept individual strings or array of strings.
batchSize Integer <optional>
The number of documents in each request where the inputKind is 'string'
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
categories documents.categories | Array.<documents.categories> <optional>
the categories of information to retrieve for the documents.
transform string | Array.<mixed> <optional>
the name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
consistentSnapshot boolean | DatabaseClient.timestamp <optional>
Controls whether to get an immutable view of the result set. Each request gets the latest data at the time of the request if not set/ false. Uses the timestamp of the first request for all subsequent requests if true. Uses the supplied timestamp for all requests if set to DatabaseClient.timestamp object.
onInitialTimestamp function <optional>
Receives the timestamp from the first request. Takes parameters of - Timestamp object for the server timestamp for the result set. Throws error if consistentSnapshot is not true.
outputStreamType chunked | object <optional>
Controls whether data is written to the output stream as chunks or object.
Since:
  • 2.9.0
Returns:
- a stream.Duplex that receives document URI input from the application in string mode or object mode (for arrays of strings) and returns document descriptors with the content and/or document uri as output to the application in object mode.
Type
stream.Duplex

remove(uris, txid, temporalCollection, systemTime) → {ResultProvider}

Removes one or more database documents; takes a configuration object with the following named parameters or, as a shortcut, one or more uri strings or an array of uri strings.
Parameters:
Name Type Argument Description
uris string | Array.<string> the uri string or an array of uri strings identifying the database documents
txid string | transactions.Transaction <optional>
a string transaction id or Transaction object identifying an open multi-statement transaction
temporalCollection string <optional>
the name of the temporal collection; use only when deleting a document created as a temporal document; sets the system end time to record when the document was no longer active
systemTime string | Date <optional>
a datetime to use as the system end time instead of the current time of the database server; can only be supplied if the temporalCollection parameter is also supplied
Since:
  • 1.0
Returns:
an object whose result() function takes a documents#removeResult success callback.
Type
ResultProvider

removeAll(collection, directory) → {ResultProvider}

Removes all documents in a collection, directory, or database; takes a configuration object with the following named parameters or no parameters to delete all documents. The user must have the rest-admin role to to delete all documents and the rest-writer role otherwise.
Parameters:
Name Type Argument Description
collection string <optional>
the collection whose documents should be deleted
directory string <optional>
a directory whose documents should be deleted
Since:
  • 1.0
Returns:
an object with a result() function taking success and failure callbacks.
Type
ResultProvider

removeAllUris(stream, options, onCompletion, onBatchError, inputKind, batchSize, concurrentRequests, onBatchSuccess) → {stream.Writable}

The removeAllUris function deletes a set of documents from the database.
Parameters:
Name Type Argument Description
stream stream stream containing the input uris.
options object <optional>
Configures the removeAllUris operation.
onCompletion function <optional>
A callback that receives a summary of the results.
onBatchError function <optional>
A callback that responds to any error while transforming a batch/array of documents. Takes progressSoFar, the uris of the batch failed and the error as parameters and controls the resolution by returning a replacement array, null/empty array or an error.
inputKind string | array <optional>
Indicates whether the input stream should accept individual strings or array of strings.
batchSize Integer <optional>
The number of documents in each request where the inputKind is 'string'.
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
onBatchSuccess function <optional>
A callback that can notify other systems about batches transformed successfully.
Since:
  • 3.0.0
Returns:
- a stream.Writable that receives document URI input from the application in string mode or (for arrays of strings) object mode.
Type
stream.Writable

suggest(partial, query, bindings, limit) → {ResultProvider}

For a partial textual value intended for a string search, looks up completions that match documents in the database. The textual value may be prefixed with the constraint name for a string search binding or facet. The textual value may also be an unqualified word or phrase for the default binding. You may pass a configuration object with the following named parameters or, as a shortcut, the partial textual search, the query, and optionally bindings.
Parameters:
Name Type Argument Description
partial string the partial search string to complete
query object a query built by a queryBuilder or a documents.CombinedQueryDefinition that defines bindings in the where and calculate clause and that qualifies the documents supplying the completions for the partial search string
bindings queryBuilder.SuggestBindings <optional>
bindings returned by the queryBuilder#suggestBindings function that override the query bindings to retrieve completions from a different index
limit number <optional>
the number of completions to return
Since:
  • 1.0
Returns:
an object whose result() function takes a success callback that receives an array with the candidate completion strings.
Type
ResultProvider

transformAll(stream, options, onCompletion, onBatchError, inputKind, batchSize, concurrentRequests, transform, transformStrategy, onBatchSuccess) → {stream.Writable}

The transformAll function applies a transform to a set of documents that are already in the database. The transform used to configure the documents must be installed on the server beforehand. The options include onCompletion, batchSize, onBatchError, inputKind, concurrentRequests, transform, onBatchSuccess and transformStrategy.
Parameters:
Name Type Argument Description
stream stream stream containing the input.
options object <optional>
Configures the transformAll operation.
onCompletion function <optional>
A callback that receives a summary of the results.
onBatchError function <optional>
A callback that responds to any error while transforming a batch/array of documents. Takes progressSoFar, the uris of the batch failed and the error as parameters and controls the resolution by returning a replacement array, null/empty array or an error.
inputKind string | array <optional>
Indicates whether the input stream should accept individual strings or array of strings.
batchSize Integer <optional>
The number of documents in each request where the inputKind is 'string'.
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
transform string | Array.<mixed> <optional>
the name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
transformStrategy replace | ignore <optional>
Controls whether the output from the transform replaces the content at the document URI. The ignore strategy allows the transform to persist output in the database without changing the original document.
onBatchSuccess function <optional>
A callback that can notify other systems about batches transformed successfully.
Since:
  • 3.0.0
Returns:
- returns a writable stream that takes the document uris of the database documents to be transformed.
Type
stream.Writable

wipe(uri, temporalCollection) → {ResultProvider}

Deletes all versions of a temporal document.
Parameters:
Name Type Description
uri string the uri for the temporal document to wipe
temporalCollection string the name of the temporal collection
Since:
  • 2.0.1
Returns:
an object whose result() function takes a documents#wipeResult success callback.
Type
ResultProvider

write(documents, categories, txid, transform, forestName, temporalCollection, systemTime) → {ResultProvider}

Writes one or more documents; takes a configuration object with the following named parameters or, as a shortcut, a document descriptor.
Parameters:
Name Type Argument Description
documents DocumentDescriptor | Array.<DocumentDescriptor> one descriptor or an array of document descriptors to write
categories documents.categories | Array.<documents.categories> <optional>
the categories of information to write for the documents
txid string | transactions.Transaction <optional>
a string transaction id or Transaction object identifying an open multi-statement transaction
transform string | Array.<mixed> <optional>
the name of a transform extension to apply to each document or an array with the name of the transform extension and an object of parameter values; the transform must have been installed using the transforms#write function.
forestName string <optional>
the name of a forest in which to write the documents.
temporalCollection string <optional>
the name of the temporal collection; use only when writing temporal documents that have the JSON properties or XML elements specifying the valid and system start and end times as defined by the valid and system axis for the temporal collection
systemTime string | Date <optional>
a datetime to use as the system start time instead of the current time of the database server; can only be supplied if the temporalCollection parameter is also supplied
Since:
  • 1.0
Returns:
an object whose result() function takes a documents#writeResult success callback.
Type
ResultProvider

writeAll(stream, options, onBatchSuccess, onBatchError, onCompletion, batchSize, concurrentRequests, defaultMetadata, transform) → {stream.Writable}

The writeAll function writes one or more documents to database using a passThrough stream and optional options. The optional options include onBatchSuccess, onBatchError, onCompletion, batchSize, concurrentRequests, defaultMetadata and transform.
Parameters:
Name Type Argument Description
stream stream stream containing the input.
options object <optional>
Configures the write operation.
onBatchSuccess function <optional>
A callback that can notify other systems about batches written successfully.
onBatchError function <optional>
A callback that can notify other systems about batches failed to be written.
onCompletion function <optional>
A callback that receives a summary of the results.
batchSize Integer <optional>
The number of documents in each batch.
concurrentRequests object <optional>
JavaScript object literal that controls the maximum number of concurrent requests that can be pending at the same time. Valid keys are "multipleOf" and "multiplier".
defaultMetadata object <optional>
the metadata values applied to each document including collections, permissions, properties, quality, and metadataValues.
transform string | Array.<mixed> <optional>
transformSpecification applied to each document.
Since:
  • 2.8.0
Returns:
- a stream.Writable in object mode that receives document descriptor input from the application for writing to the database.
Type
stream.Writable

Type Definitions


patchResult(document)

A success callback for ResultProvider that receives the result from the documents#patch function.
Parameters:
Name Type Description
document object a sparse documents.DocumentDescriptor object providing the uri of the patched document.
Since:
  • 1.0

probeResult(document)

A success callback for ResultProvider that receives the result from the documents#probe.
Parameters:
Name Type Description
document documents.DocumentDescriptor a sparse document descriptor with an exists property that identifies whether the document exists
Since:
  • 1.0

protectResult(document)

A success callback for ResultProvider that receives the result from the documents#protect.
Parameters:
Name Type Description
document documents.DocumentDescriptor a sparse document descriptor for the protected document
Since:
  • 2.0.1

removeResult(document)

A success callback for ResultProvider that receives the result from the documents#remove.
Parameters:
Name Type Description
document documents.DocumentDescriptor a sparse document descriptor for the removed document
Since:
  • 1.0

resultList(documents)

A success callback for ResultProvider that receives the result from the documents#read.
Parameters:
Name Type Description
documents Array.<documents.DocumentDescriptor> an array of documents.DocumentDescriptor objects with the requested metadata and/or content for the documents
Since:
  • 1.0

wipeResult(document)

A success callback for ResultProvider that receives the result from the documents#wipe.
Parameters:
Name Type Description
document documents.DocumentDescriptor a sparse document descriptor for the wipe command
Since:
  • 2.0.1

writeResult(response)

A success callback for ResultProvider that receives the result from the documents#write or the documents#createWriteStream functions.
Parameters:
Name Type Description
response object a response with a documents property providing a sparse array of array of documents.DocumentDescriptor objects providing the uris of the written documents.
Since:
  • 1.0

CombinedQueryDefinition

Defines a query in the structure accepted by the REST API.
Type:
  • object
Properties:
Name Type Argument Description
search object a combined query, which can have properties for a structured query, a string query, and query options
categories documents.categories | Array.<documents.categories> <optional>
the categories of information to retrieve for the result documents
optionsName string <optional>
query options installed on the REST server to merge with any query options provided in the combined query; provided options take precedence over installed options
pageStart number <optional>
the position of the first document in the returned page of result documents (also known as the result slice)
pageLength number <optional>
the number of documents in the returned page of result documents
view string <optional>
a value from the enumeration all|facets|metadata|none|results|uris controlling whether to generate some or all of a search response summarizing the search response in addition to the result documents; the default is 'none' to return only the result documents
Since:
  • 1.0

DocumentDescriptor

Provides a description of a document to write to the server, after reading from the server, or for another document operation. The descriptor may have more or fewer properties depending on the operation.
Type:
  • object
Properties:
Name Type Argument Description
uri string the identifier for the document in the database
content object | string | Buffer | ReadableStream <optional>
the content of the document; when writing a ReadableStream for the content, first pause the stream
collections Array.<string> <optional>
the collections to which the document belongs
permissions Array.<object> <optional>
the permissions controlling which users can read or write the document
properties Array.<object> <optional>
additional properties of the document
quality number <optional>
a weight to increase or decrease the rank of the document
metadataValues Array.<object> <optional>
the metadata values of the document
versionId number <optional>
an identifier for the currently stored version of the document
temporalDocument string <optional>
the collection URI for a temporal document; use only when writing a document to a temporal collection
Since:
  • 1.0

categories

Categories of information to read or write for documents. The possible values of the enumeration are content|collections|metadataValues|permissions|properties|quality|metadata|rawContent|none where metadata is an alias for all of the categories other than content.
Type:
  • enum
Since:
  • 1.0
Copyright (c) 2020 MarkLogic Corporation Documentation generated by JSDoc 4.0.0 on 2024-08-19T23:06:48-07:00 using the DocStrap template.